home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / libpam-runtime.postrm < prev    next >
Text File  |  2008-10-16  |  517b  |  18 lines

  1. #!/bin/sh -e
  2.  
  3. if [ "$1" = "purge" ]; then
  4.     rm -f /etc/pam.d/common-auth /etc/pam.d/common-account \
  5.           /etc/pam.d/common-session /etc/pam.d/common-password
  6.     rm -f /var/lib/pam/auth /var/lib/pam/account /var/lib/pam/session \
  7.           /var/lib/pam/password /var/lib/pam/seen
  8.     rmdir --ignore-fail-on-non-empty /var/lib/pam
  9. fi
  10.  
  11. # Automatically added by dh_installdebconf
  12. if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
  13.     . /usr/share/debconf/confmodule
  14.     db_purge
  15. fi
  16. # End automatically added section
  17.  
  18.